BACK TO LIST

Syntax:

YourCollectvariable(1 to 7) = VA1.Platinum_Word_Best

Details :

The Engine String  produced by VoiceAction of the currently uttered word. is pattern matched with those available in the Language  File in path. If a match with the direct string or with the string compare protocol is found then it collects a sequence of the title (word or words) and its font setting and percentage of match.

This may lead to a long number of words nearly similar.

This instruction is the technology to scan the best probability percentage achiever form the list.

It gives 7 words in their decreasing order.

Example :

Private Sub Timer()

Dim nni


For nni = 1 To VoiceAction1.Platinum_Words_Available
     VoiceAction1.Send_of_no = nni
     LabResult.Text = VoiceAction1.Platinum_Word_Best
Next nni

End Sub

BACK TO LIST